home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / grafik / 3d & render tools / irit / man / man6 / tderive.6 < prev    next >
Text File  |  1996-07-16  |  1KB  |  31 lines

  1. .TH TDERIVE
  2.  6 "IRIT Version 6.0" 
  3. .SH NAME
  4. TDERIVE
  5.  
  6.  
  7.  
  8.  TrivarType TDERIVE( TrivarType TV, NumericType Dir )
  9.  
  10. Returns a vector field trivariate representing the differentiated 
  11. trivariate in the given direction (ROW, COL, or DEPTH). Evaluation of the
  12. returned trivariate at a given parameter value will return a vector
  13. representing the partial derivative of TV in Dir at that
  14. parameter value.
  15.  
  16.  TV = tbezier( list( list( list( ctlpt( E1, 0.1 ),
  17.                                  ctlpt( E1, 0.2 ) ),
  18.                            list( ctlpt( E1, 0.3 ),
  19.                                  ctlpt( E1, 0.4 ) ) ),
  20.                      list( list( ctlpt( E1, 2.4 ),
  21.                                  ctlpt( E1, 2.2 ) ),
  22.                            list( ctlpt( E1, 2.3 ),
  23.                                  ctlpt( E1, 2.1 ) ) ) ) );
  24.  
  25.  DuTV = TDERIVE( TV, ROW );
  26.  DvTV = TDERIVE( TV, COL );
  27.  DwTV = TDERIVE( TV, DEPTH );
  28.  
  29. computes the gradiate of a scalar trivariate field, by computing its
  30. partials with respect to u, v, and w.
  31.